home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 41
/
Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso
/
Aminet
/
util
/
rexx
/
MicroRexx202.lha
/
MicroRexx
/
Rexx
/
Number.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
OS/2 REXX Batch file
|
1998-08-07
|
281 b
|
12 lines
/* Number.rexx */
options results
address 'MicroRexx'
'OPENWIN' 0 0 640 200 '"A sample window"' /* open window */
w = result /* store window handle */
'PRINT' w '"Enter a number: "'
'EDIT' w 10
n = result
'REQUEST' "Number:" n "OKAY"
'CLOSEWIN' w